home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Language/OS - Multiplatform Resource Library
/
LANGUAGE OS.iso
/
lisp
/
kcl
/
akcl
/
akcl1615.lha
/
xbin
/
move-if-changed
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1989-08-22
|
162 b
|
16 lines
#!/bin/sh
F1=$1
F2=$2
if
cmp $1 $2 > /dev/null
then echo $1 and $2 are identical ;
else
echo $1 and $2 were not the same.
rm -f $2
ln $1 $2
echo ln $1 $2
fi